home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 April / EnigmA AMIGA RUN 17 (1997)(G.R. Edizioni)(IT)[!][issue 1997-04][EAR-CD].iso / EARCD / comm / bbs / Hydra11.lha / HBBS / System / FCheck < prev    next >
Text File  |  1996-06-25  |  1KB  |  46 lines

  1. ; the output of All checker programs that get used must be able to be redirected
  2. ; using normal AmigaDOS redirection ( e.g. >T:OutPut )
  3.  
  4. ; @F@ is replaced with the filename of the uploaded file
  5. ; @N@ is replaced with just the filename of the uploaded file
  6. ; @E@ is replaced with the filename's extension
  7. ; @W@ is replaced with the full path of the WORK directory
  8. ; @P@ is replaced with the path of the filename (but not including the name itself)
  9. ; @A@ is replaces with the full path and filename of the file
  10.  
  11. ; so, say you were on node 3 an uploaded TEST.LHA the following @ codes above
  12. ; would give you the following results (without the quotes)
  13.  
  14. ; @F@ "TEST.LHA"
  15. ; @N@ "TEST"
  16. ; @E@ ".LHA"
  17. ; @W@ "HBBS:Nodes/Node3/Work/"
  18. ; @P@ "HBBS:Nodes/Node3/Playpen/"
  19. ; @A@ "HBBS:Nodes/Node3/Playpen/TEST.LHA"
  20.  
  21. ; get it ?
  22.  
  23. FileExtension_1=LHA
  24. FileType_1=LHA
  25. Checker_1=C:Archivers/LHA
  26. Options_1=t @F@
  27. CDToWork_1=FALSE
  28. CDToPlayPen_1=FALSE
  29. ; so command that gets run might be "LHA >T:CheckerOutput t HBBS:Nodes/Node1/Playpen/TSNHBBS1.LHA"
  30.  
  31. FileExtension_2=DMS
  32. FileType_2=DMS
  33. Checker_2=C:Archivers/DMS
  34. Options_2=test @F@
  35. CDToWork_2=FALSE
  36. CDToPlayPen_2=FALSE
  37.  
  38. ; The error strings below are used by ALL the checkers, so if you want to test
  39. ; .LZH, .SFX, .RUN and .LHA files you don't need to type the same error messages
  40. ; in 4 times!
  41.  
  42. ; when detecting errors the bbs software will search the outputfile for
  43. ; the following strings.
  44. Errors_1=Operation Not Entirely Successful
  45. Errors_2=skipping corrupt
  46.